home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / php / pear / adodb / datadict / datadict-oci8.inc.php < prev    next >
PHP Script  |  2005-05-17  |  7KB  |  280 lines

  1. <?php
  2.  
  3. /**
  4.   V4.63 17 May 2005  (c) 2000-2005 John Lim (jlim@natsoft.com.my). All rights reserved.
  5.   Released under both BSD license and Lesser GPL library license. 
  6.   Whenever there is any discrepancy between the two licenses, 
  7.   the BSD license will take precedence.
  8.     
  9.   Set tabs to 4 for best viewing.
  10.  
  11. */
  12.  
  13. // security - hide paths
  14. if (!defined('ADODB_DIR')) die();
  15.  
  16. class ADODB2_oci8 extends ADODB_DataDict {
  17.     
  18.     var $databaseType = 'oci8';
  19.     var $seqField = false;
  20.     var $seqPrefix = 'SEQ_';
  21.     var $dropTable = "DROP TABLE %s CASCADE CONSTRAINTS";
  22.     var $trigPrefix = 'TRIG_';
  23.     var $alterCol = ' MODIFY ';
  24.     
  25.     function MetaType($t,$len=-1)
  26.     {
  27.         if (is_object($t)) {
  28.             $fieldobj = $t;
  29.             $t = $fieldobj->type;
  30.             $len = $fieldobj->max_length;
  31.         }
  32.         switch (strtoupper($t)) {
  33.          case 'VARCHAR':
  34.          case 'VARCHAR2':
  35.         case 'CHAR':
  36.         case 'VARBINARY':
  37.         case 'BINARY':
  38.             if (isset($this) && $len <= $this->blobSize) return 'C';
  39.             return 'X';
  40.         
  41.         case 'NCHAR':
  42.         case 'NVARCHAR2':
  43.         case 'NVARCHAR':
  44.             if (isset($this) && $len <= $this->blobSize) return 'C2';
  45.             return 'X2';
  46.             
  47.         case 'NCLOB':
  48.         case 'CLOB':
  49.             return 'XL';
  50.         
  51.         case 'LONG RAW':
  52.         case 'LONG VARBINARY':
  53.         case 'BLOB':
  54.             return 'B';
  55.         
  56.         case 'DATE': 
  57.             return 'T';
  58.         
  59.         case 'INT': 
  60.         case 'SMALLINT':
  61.         case 'INTEGER': 
  62.             return 'I';
  63.             
  64.         default:
  65.             return 'N';
  66.         }
  67.     }
  68.     
  69.      function ActualType($meta)
  70.     {
  71.         switch($meta) {
  72.         case 'C': return 'VARCHAR';
  73.         case 'X': return 'VARCHAR(4000)';
  74.         case 'XL': return 'CLOB';
  75.         
  76.         case 'C2': return 'NVARCHAR';
  77.         case 'X2': return 'NVARCHAR(2000)';
  78.         
  79.         case 'B': return 'BLOB';
  80.             
  81.         case 'D': 
  82.         case 'T': return 'DATE';
  83.         case 'L': return 'DECIMAL(1)';
  84.         case 'I1': return 'DECIMAL(3)';
  85.         case 'I2': return 'DECIMAL(5)';
  86.         case 'I':
  87.         case 'I4': return 'DECIMAL(10)';
  88.         
  89.         case 'I8': return 'DECIMAL(20)';
  90.         case 'F': return 'DECIMAL';
  91.         case 'N': return 'DECIMAL';
  92.         default:
  93.             return $meta;
  94.         }    
  95.     }
  96.     
  97.     function CreateDatabase($dbname, $options=false)
  98.     {
  99.         $options = $this->_Options($options);
  100.         $password = isset($options['PASSWORD']) ? $options['PASSWORD'] : 'tiger';
  101.         $tablespace = isset($options["TABLESPACE"]) ? " DEFAULT TABLESPACE ".$options["TABLESPACE"] : '';
  102.         $sql[] = "CREATE USER ".$dbname." IDENTIFIED BY ".$password.$tablespace;
  103.         $sql[] = "GRANT CREATE SESSION, CREATE TABLE,UNLIMITED TABLESPACE,CREATE SEQUENCE TO $dbname";
  104.         
  105.         return $sql;
  106.     }
  107.     
  108.     function AddColumnSQL($tabname, $flds)
  109.     {
  110.         $f = array();
  111.         list($lines,$pkey) = $this->_GenFields($flds);
  112.         $s = "ALTER TABLE $tabname ADD (";
  113.         foreach($lines as $v) {
  114.             $f[] = "\n $v";
  115.         }
  116.         
  117.         $s .= implode(', ',$f).')';
  118.         $sql[] = $s;
  119.         return $sql;
  120.     }
  121.     
  122.     function AlterColumnSQL($tabname, $flds)
  123.     {
  124.         $f = array();
  125.         list($lines,$pkey) = $this->_GenFields($flds);
  126.         $s = "ALTER TABLE $tabname MODIFY(";
  127.         foreach($lines as $v) {
  128.             $f[] = "\n $v";
  129.         }
  130.         $s .= implode(', ',$f).')';
  131.         $sql[] = $s;
  132.         return $sql;
  133.     }
  134.     
  135.     function DropColumnSQL($tabname, $flds)
  136.     {
  137.         if (!is_array($flds)) $flds = explode(',',$flds);
  138.         foreach ($flds as $k => $v) $flds[$k] = $this->NameQuote($v);
  139.         
  140.         $sql = array();
  141.         $s = "ALTER TABLE $tabname DROP(";
  142.         $s .= implode(', ',$flds).') CASCADE CONSTRAINTS';
  143.         $sql[] = $s;
  144.         return $sql;
  145.     }
  146.     
  147.     function _DropAutoIncrement($t)
  148.     {
  149.         if (strpos($t,'.') !== false) {
  150.             $tarr = explode('.',$t);
  151.             return "drop sequence ".$tarr[0].".seq_".$tarr[1];
  152.         }
  153.         return "drop sequence seq_".$t;
  154.     }
  155.     
  156.     // return string must begin with space
  157.     function _CreateSuffix($fname,$ftype,$fnotnull,$fdefault,$fautoinc,$fconstraint,$funsigned)
  158.     {
  159.         $suffix = '';
  160.         
  161.         if ($fdefault == "''" && $fnotnull) {// this is null in oracle
  162.             $fnotnull = false;
  163.             if ($this->debug) ADOConnection::outp("NOT NULL and DEFAULT='' illegal in Oracle");
  164.         }
  165.         
  166.         if (strlen($fdefault)) $suffix .= " DEFAULT $fdefault";
  167.         if ($fnotnull) $suffix .= ' NOT NULL';
  168.         
  169.         if ($fautoinc) $this->seqField = $fname;
  170.         if ($fconstraint) $suffix .= ' '.$fconstraint;
  171.         
  172.         return $suffix;
  173.     }
  174.     
  175. /*
  176. CREATE or replace TRIGGER jaddress_insert
  177. before insert on jaddress
  178. for each row
  179. begin
  180. select seqaddress.nextval into :new.A_ID from dual;
  181. end;
  182. */
  183.     function _Triggers($tabname,$tableoptions)
  184.     {
  185.         if (!$this->seqField) return array();
  186.         
  187.         if ($this->schema) {
  188.             $t = strpos($tabname,'.');
  189.             if ($t !== false) $tab = substr($tabname,$t+1);
  190.             else $tab = $tabname;
  191.             $seqname = $this->schema.'.'.$this->seqPrefix.$tab;
  192.             $trigname = $this->schema.'.'.$this->trigPrefix.$this->seqPrefix.$tab;
  193.         } else {
  194.             $seqname = $this->seqPrefix.$tabname;
  195.             $trigname = $this->trigPrefix.$seqname;
  196.         }
  197.         if (isset($tableoptions['REPLACE'])) $sql[] = "DROP SEQUENCE $seqname";
  198.         $seqCache = '';
  199.         if (isset($tableoptions['SEQUENCE_CACHE'])){$seqCache = $tableoptions['SEQUENCE_CACHE'];}
  200.         $seqIncr = '';
  201.         if (isset($tableoptions['SEQUENCE_INCREMENT'])){$seqIncr = ' INCREMENT BY '.$tableoptions['SEQUENCE_INCREMENT'];}
  202.         $seqStart = '';
  203.         if (isset($tableoptions['SEQUENCE_START'])){$seqIncr = ' START WITH '.$tableoptions['SEQUENCE_START'];}
  204.         $sql[] = "CREATE SEQUENCE $seqname $seqStart $seqIncr $seqCache";
  205.         $sql[] = "CREATE OR REPLACE TRIGGER $trigname BEFORE insert ON $tabname FOR EACH ROW WHEN (NEW.$this->seqField IS NULL OR NEW.$this->seqField = 0) BEGIN select $seqname.nextval into :new.$this->seqField from dual; END;";
  206.         
  207.         $this->seqField = false;
  208.         return $sql;
  209.     }
  210.     
  211.     /*
  212.     CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name [(create_definition,...)]
  213.         [table_options] [select_statement]
  214.         create_definition:
  215.         col_name type [NOT NULL | NULL] [DEFAULT default_value] [AUTO_INCREMENT]
  216.         [PRIMARY KEY] [reference_definition]
  217.         or PRIMARY KEY (index_col_name,...)
  218.         or KEY [index_name] (index_col_name,...)
  219.         or INDEX [index_name] (index_col_name,...)
  220.         or UNIQUE [INDEX] [index_name] (index_col_name,...)
  221.         or FULLTEXT [INDEX] [index_name] (index_col_name,...)
  222.         or [CONSTRAINT symbol] FOREIGN KEY [index_name] (index_col_name,...)
  223.         [reference_definition]
  224.         or CHECK (expr)
  225.     */
  226.     
  227.  
  228.     
  229.     function _IndexSQL($idxname, $tabname, $flds,$idxoptions)
  230.     {
  231.         $sql = array();
  232.         
  233.         if ( isset($idxoptions['REPLACE']) || isset($idxoptions['DROP']) ) {
  234.             $sql[] = sprintf ($this->dropIndex, $idxname, $tabname);
  235.             if ( isset($idxoptions['DROP']) )
  236.                 return $sql;
  237.         }
  238.         
  239.         if ( empty ($flds) ) {
  240.             return $sql;
  241.         }
  242.         
  243.         if (isset($idxoptions['BITMAP'])) {
  244.             $unique = ' BITMAP'; 
  245.         } elseif (isset($idxoptions['UNIQUE'])) {
  246.             $unique = ' UNIQUE';
  247.         } else {
  248.             $unique = '';
  249.         }
  250.         
  251.         if ( is_array($flds) )
  252.             $flds = implode(', ',$flds);
  253.         $s = 'CREATE' . $unique . ' INDEX ' . $idxname . ' ON ' . $tabname . ' (' . $flds . ')';
  254.         
  255.         if ( isset($idxoptions[$this->upperName]) )
  256.             $s .= $idxoptions[$this->upperName];
  257.         
  258.         if (isset($idxoptions['oci8']))
  259.             $s .= $idxoptions['oci8'];
  260.         
  261.  
  262.         $sql[] = $s;
  263.         
  264.         return $sql;
  265.     }
  266.     
  267.     function GetCommentSQL($table,$col)
  268.     {
  269.         $table = $this->connection->qstr($table);
  270.         $col = $this->connection->qstr($col);    
  271.         return "select comments from USER_COL_COMMENTS where TABLE_NAME=$table and COLUMN_NAME=$col";
  272.     }
  273.     
  274.     function SetCommentSQL($table,$col,$cmt)
  275.     {
  276.         $cmt = $this->connection->qstr($cmt);
  277.         return  "COMMENT ON COLUMN $table.$col IS $cmt";
  278.     }
  279. }
  280. ?>